home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 06 / alib / strcpy.asm < prev    next >
Assembly Source File  |  1991-08-21  |  285b  |  25 lines

  1.     include    asm.inc
  2.  
  3.     public    strcpy
  4.  
  5.     .code
  6.  
  7. ;;    strcpy
  8. ;
  9. ;    entry    DS:SI    source ptr
  10. ;        ES:DI    destination ptr
  11. ;    exit    SI    updated past NULL
  12. ;        DI    updated, points to NULL
  13. ;    uses    AX
  14. ;
  15. strcpy    proc
  16.     lodsb
  17.     stosb
  18.     cmp    al,NULL_CHAR
  19.     jne    strcpy
  20.     dec    di
  21.     ret
  22. strcpy    endp
  23.  
  24.     end
  25.